home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / fpkpas92.zip / SRCRTL.ZIP / RTL / DOS / DPMI2RAW.PPI < prev    next >
Text File  |  1997-07-01  |  235b  |  13 lines

  1. procedure Get_RAW_Switch_Address;
  2. begin
  3.   asm
  4.     movw  $0x306,%ax
  5.     int   $0x31
  6.     shll  $0x10,%ebx
  7.     movw  %cx,%bx
  8.     movl  %ebx,_SWITCHRAW2DPMI
  9.     movl  %edi,_SWITCHDPMI2RAW
  10.     movw  %si,_SWITCHSEG
  11.   end;
  12. end;
  13.